home *** CD-ROM | disk | FTP | other *** search
/ Programming a Multiplayer FPS in DirectX / Programming a Multiplayer FPS in DirectX (Companion CD).iso / DirectX / dxsdk_oct2004.exe / dxsdk.exe / Samples / C++ / DirectInput / DIConfig / ourguids.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-09-27  |  1.1 KB  |  33 lines

  1. //-----------------------------------------------------------------------------
  2. // File: ourguids.h
  3. //
  4. // Desc: Contains the definitions of the UI's GUIDs.
  5. //
  6. // Copyright (C) Microsoft Corporation. All Rights Reserved.
  7. //-----------------------------------------------------------------------------
  8.  
  9. #ifndef __CFGUI_OURGUIDS_H__
  10. #define __CFGUI_OURGUIDS_H__
  11.  
  12.  
  13. #include <objbase.h>
  14.  
  15. // {F4279160-608F-11d3-8FB2-00C04F8EC627}
  16. DEFINE_GUID(IID_IDIActionFramework, 
  17. 0xf4279160, 0x608f, 0x11d3, 0x8f, 0xb2, 0x0, 0xc0, 0x4f, 0x8e, 0xc6, 0x27);
  18.  
  19. // {9F34AF20-6095-11d3-8FB2-00C04F8EC627}
  20. DEFINE_GUID(CLSID_CDirectInputActionFramework, 
  21. 0x9f34af20, 0x6095, 0x11d3, 0x8f, 0xb2, 0x0, 0xc0, 0x4f, 0x8e, 0xc6, 0x27);
  22.  
  23. // {72BB1241-5CA8-11d3-8FB2-00C04F8EC627}
  24. DEFINE_GUID(IID_IDIDeviceActionConfigPage, 
  25. 0x72bb1241, 0x5ca8, 0x11d3, 0x8f, 0xb2, 0x0, 0xc0, 0x4f, 0x8e, 0xc6, 0x27);
  26.  
  27. // {18AB439E-FCF4-40d4-90DA-F79BAA3B0655}
  28. DEFINE_GUID(CLSID_CDIDeviceActionConfigPage, 
  29. 0x18ab439e, 0xfcf4, 0x40d4, 0x90, 0xda, 0xf7, 0x9b, 0xaa, 0x3b, 0x6, 0x55);
  30.  
  31.  
  32. #endif //__CFGUI_OURGUIDS_H__
  33.